home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 22 / PC Actual CD 22.iso / progs / DIRECTOR / data.z / ScriptAuthor-Navigate.dir / Scripts_6_Navigate to the Menu on the main movie.ls < prev    next >
Encoding:
Text File  |  1997-05-10  |  276 b   |  16 lines

  1. global gScriptAuthoringWindow
  2.  
  3. on mouseUp
  4.   if gScriptAuthoringWindow = the stage then
  5.     tell the stage
  6.       PlaySound("ButtonClick")
  7.       GoMenu()
  8.     end tell
  9.   else
  10.     tell gScriptAuthoringWindow
  11.       PlaySound("ButtonClick")
  12.       GoMenu()
  13.     end tell
  14.   end if
  15. end
  16.